/* Mobile (up to 600px) */
@media only screen and (max-width: 600px) {
    .button-groups {
        text-align: center;
    }

}


/* Laptop and above (1025px and up) */
@media only screen and (min-width: 1025px) {
    .sub-button-group {
        display: inline-block;
    }
}

.banner {
    align-items: center;
    padding-bottom: 2px;
}

.button-groups .btn {
    font-size: small;
}

@media only screen and (min-width: 1024px) and (max-width: 1366px) {

    /* Styles here */
    .button-groups .btn {
        font-size: xx-small;
    }
}

.button-groups {
    display: flex;
    justify-content: center;
}

#buttons-container {
    justify-content: space-evenly;
    flex-direction: column;
}

/* Base styles (applied to all screens unless overridden) */

/* Small phones (≤ 575px) */
@media only screen and (max-width: 575px) {
    /* Styles for very small phones */
    #buttons-container {
        flex-direction: column;
    }
}

/* Phones (576px to 767px) */
@media only screen and (min-width: 576px) and (max-width: 767px) {
    /* Styles for phones */
    #buttons-container {
        flex-direction: column;
    }
}

/* Tablets (768px to 1023px) */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    /* Styles for tablets */
    #buttons-container {
        flex-direction: column;
    }
}

/* Small laptops / iPads landscape (1024px to 1366px) */
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
    /* Styles for small laptops or tablets in landscape */
    #buttons-container {
        flex-direction: row;
    }
}

/* Desktops (≥ 1367px) */
@media only screen and (min-width: 1367px) {
    /* Styles for large desktops and wide screens */
    #buttons-container {
        flex-direction: row;
    }
}